| 1 2 3 4 5 6 7 8 9 10 11 12 13 | 1× 2× 1× 20× 1× 20× 1× | import { Injectable } from '@angular/core';
@Injectable()
export class MathHelper {
random(): number {
return Math.random();
}
floor(val: number): number {
return Math.floor(val);
}
} |